home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / arexx / rxtrk386.lha / RexxTricks / RDBBackup / RDBBackup.windows < prev    next >
Text File  |  1996-04-20  |  4KB  |  139 lines

  1. /*
  2. ** $VER: RDBBackup.windows 1.1 (20.4.96) ©1996 by Jürgen Kohrmeyer
  3. **
  4. ** Window definitions for RDBBackup
  5. */
  6.  
  7. /*
  8. ** mainwindow
  9. */
  10.  
  11. mainwindowtags = ,
  12.    WindowID(1),
  13.    WindowTitle(appname appversion),
  14.    PubScreenName(pubscreen),
  15.    'HorizGroupA',
  16.       'Space',
  17.       'VertGroupA',
  18.          'Space',
  19.          NamedFrameBox(localestring(MSG_FRAMEBOX_PREFS)),
  20.          'VertGroupA',
  21.             'Space',
  22.             'HorizGroupAC',
  23.                'Space',
  24.                'LineArray',
  25.                   'BeginLine',
  26.                      TextID(localestring(MSG_GAD_PUBSCREEN),2) 'TRAT_Flags TROF_RIGHTALIGN',
  27.                      'Space',
  28.                      StringGadget(pubscreen,1),
  29.                      GetEntryButton(2),
  30.                   'EndLine',
  31.                   'SpaceS',
  32.                   'BeginLine',
  33.                      TextID(localestring(MSG_GAD_BACKUP_DIR),4) 'TRAT_Flags TROF_RIGHTALIGN',
  34.                      'Space',
  35.                      StringGadget(backupdir,3),
  36.                      GetDrawerButton(4),
  37.                   'EndLine',
  38.                   'SpaceS',
  39.                   'BeginLine',
  40.                      TextID(localestring(MSG_GAD_SCSI_DEVICE),6) 'TRAT_Flags TROF_RIGHTALIGN',
  41.                      'Space',
  42.                      StringGadget(device,5),
  43.                      GetEntryButton(6),
  44.                   'EndLine',
  45.                'EndArray',
  46.                'Space',
  47.             'EndGroup',
  48.             'Space',         
  49.          'EndGroup',
  50.          'Space',         
  51.          NamedFrameBox(localestring(MSG_FRAMEBOX_UNITS)),
  52.          'HorizGroupA',
  53.             'Space',
  54.             'VertGroupA',
  55.                'Space',
  56.                FWListSS('unitlist',10,0,0) 'TRAT_MinWidth 56',
  57.                'HorizGroupAC',
  58.                   Button(localestring(MSG_GAD_UPDATE),11),
  59.                   Button(localestring(MSG_GAD_BACKUP),12) 'TRAT_Disabled 1',
  60.                   Button(localestring(MSG_GAD_RESTORE),13) 'TRAT_Disabled 1',
  61.                'EndGroup',
  62.                'Space',
  63.             'EndGroup',
  64.             'Space',
  65.          'EndGroup',
  66.          'Space',
  67.          'HorizGroupSAC',
  68.              Button(localestring(MSG_GAD_ABOUT),20),
  69.             'Space',
  70.              Button(localestring(MSG_GAD_SAVE_PREFS),21),
  71.             'Space',
  72.              Button(localestring(MSG_GAD_QUIT),22),
  73.          'EndGroup',
  74.          'Space',
  75.       'EndGroup',
  76.       'Space',
  77.    'EndGroup EndProject'
  78.  
  79.  
  80. /*
  81. ** device window
  82. */
  83.  
  84. devicewindowtags = ,
  85.    WindowID(2),
  86.    WindowPosition('TRWP_MOUSEPOINTER'),
  87.    WindowTitle(localestring(MSG_DEVICEWINDOW_TITLE)),
  88.    WindowFlags('TRWF_NOESCCLOSE'),
  89.    PubScreenName(pubscreen),
  90.    'VertGroupA',
  91.       'Space',
  92.       'HorizGroupA',
  93.          'Space',
  94.          ListSS('devicelist',201,0,0),
  95.          'Space',
  96.       'EndGroup',
  97.       'Space',
  98.       'HorizSeparator',
  99.       'Space',
  100.       'HorizGroupA',
  101.          'Space',
  102.          ButtonR(localestring(MSG_GAD_USE),298),
  103.          ButtonE(localestring(MSG_GAD_CANCEL),299),
  104.          'Space',
  105.       'EndGroup',
  106.       'Space',
  107.    'EndGroup EndProject'
  108.  
  109.  
  110.  
  111. /*
  112. ** public screen window
  113. */
  114.  
  115. screenwindowtags = ,
  116.    WindowID(3),
  117.    WindowPosition('TRWP_MOUSEPOINTER'),
  118.    WindowTitle(localestring(MSG_SCREENWINDOW_TITLE)),
  119.    WindowFlags('TRWF_NOESCCLOSE'),
  120.    PubScreenName(pubscreen),
  121.    'VertGroupA',
  122.       'Space',
  123.       'HorizGroupA',
  124.          'Space',
  125.          ListSS('screenlist',301,0,0),
  126.          'Space',
  127.       'EndGroup',
  128.       'Space',
  129.       'HorizSeparator',
  130.       'Space',
  131.       'HorizGroupA',
  132.          'Space',
  133.          ButtonR(localestring(MSG_GAD_USE),398),
  134.          ButtonE(localestring(MSG_GAD_CANCEL),399),
  135.          'Space',
  136.       'EndGroup',
  137.       'Space',
  138.    'EndGroup EndProject'
  139.